home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / fl / video / VideoScaleMode.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  387 b   |  19 lines

  1. package fl.video
  2. {
  3.    public final class VideoScaleMode
  4.    {
  5.       
  6.       public static const EXACT_FIT:String = "exactFit";
  7.       
  8.       public static const MAINTAIN_ASPECT_RATIO:String = "maintainAspectRatio";
  9.       
  10.       public static const NO_SCALE:String = "noScale";
  11.        
  12.       
  13.       public function VideoScaleMode()
  14.       {
  15.          super();
  16.       }
  17.    }
  18. }
  19.